A super small program that lists your machines outward facing IP addresses, a simple TCP server that will capitalize a string sent to it, and a TCP Client.
In this post we will go over creating a simple webserver in C, step-by-step. First, we'll start with some background into webservers, and subsequently add more ...
This is a very simple HTTP server for Unix, using fork(). It's very easy to use. How to use See main.c , an interesting example. To log stuff, use fprintf( ...
For example: http://localhost:3490/index.html. should serve the file ./serverroot/index.html. Examine the skeleton source code in server.c and cache.c for ...
C-Web-Server is a fun little project to practice C programming while reviewing concepts such as LRU cache, memory management, and the HTTP protocol. Caveats when sending header... · Caution: Always initialize your...
An HTTP server is conceptually simple: It gets more difficult depending on how much of HTTP you want to support - POST is a little more complicated, scripts, ...